home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Presentations / Presentations ’93 / Macintosh as Internet Server ƒ / inetd / Libraries / RMake < prev   
Encoding:
Text File  |  1993-04-14  |  203 b   |  17 lines  |  [TEXT/MPS ]

  1.  
  2. set echo 0
  3. set exit 0
  4.  
  5. set retdir `directory`
  6.  
  7. for dir in `files -d -r -o -f`
  8.     if "`(exists "{dir}"Makefile) ≥ dev:null`"
  9.         cd "{dir}"
  10.         myBuildProgram {1}
  11.         cd {retdir}
  12.     end
  13. end
  14.  
  15. set exit 1
  16. set echo 1
  17.